home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 February / Gamestar_81_2006-02_dvd.iso / Red Shark / Missions / Mission_5 / MissionTasks.script < prev    next >
Text File  |  2001-09-04  |  1KB  |  53 lines

  1. //-------------------------------------------------------------------
  2. //
  3. //  This code is copyright 2001 by G5 Software.
  4. //  Any unauthorized usage, either in part or in whole of this code
  5. //  is strictly prohibited. Violators WILL be prosecuted to the
  6. //  maximum extent allowed by law.
  7. //
  8. //-------------------------------------------------------------------
  9.  
  10. ///////////////////////////////////
  11. //
  12. // Mission 5. Clear Village
  13. //
  14. //
  15.  
  16. class CMission5_Patrol_a extends CBaseAITask_Patrol
  17. {
  18.   array GetPatrolTrip()
  19.   {
  20.     return array(
  21.       vector( 8082, 8152, 0),
  22.       vector( 8083, 8289, 0),
  23.       vector( 7935, 8287, 0),
  24.       vector( 7944, 8157, 0));
  25.   }
  26.  
  27.   float GetTripSpeed()
  28.   {
  29.     return 15;
  30.   }
  31.  
  32.   void OnEnemyTargeted() {}
  33. }
  34.  
  35. class CMission5_Patrol_b extends CBaseAITask_Patrol
  36. {
  37.   array GetPatrolTrip()
  38.   {
  39.     return array(
  40.       vector( 7632, 8180, 0),
  41.       vector( 7640, 8330, 0),
  42.       vector( 7892, 8326, 0),
  43.       vector( 7890, 8112, 0));
  44.   }
  45.  
  46.   float GetTripSpeed()
  47.   {
  48.     return 15;
  49.   }
  50.  
  51.   void OnEnemyTargeted() {}
  52. }
  53.